body {
    font-family: 'Roboto Condensed', sans-serif;
	overflow: hidden;
	display: none;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10+ and Edge */
	user-select: none; /* Standard syntax */
}

.bar-bottom {
	position: absolute;
	width: 1920px;
	height: 50px;
	bottom: 0px;
	left: 0px;
	background-color: rgb(0,0,0);
	border-top: 3px solid #050505;
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
}
  
.bar-top {
	position: absolute;
	width: 1920px;
	height: 50px;
	right: 0;
	top: 0;
	background-color: rgb(0,0,0);
	border-bottom: 3px solid #050505;
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
}

.dialog {
	width: 480px;
	height: 550px;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 50;
	right: 50;
	box-shadow: 0 0 10px 7px black;
	background-color: rgba(0, 0, 0, 0.8);
	border: 2px solid #212121;
	overflow: hidden;
	top:13%;
}

.dialog-heading {
	padding: 10px;
	background: black;
	border-bottom: 1.4px solid #A5C4D8;
	color: rgb(140, 204, 239);
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-size: 22px;
	margin-top: 0px;
}

input {
	width: 100%;
	padding: 10px;
	text-align:center;
	font-family: 'Roboto Condensed', sans-serif;
	border: 1px solid rgba(140, 204, 239, 0.37);
	color: #fff;
	background-color: rgba(0, 0, 0, 0.548);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgba(255, 255, 255, 0.466);
	text-align:center;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	opacity: 1; /* Firefox */
}

.radio-toolbar input[type="radio"] {
	opacity: 0;
	position: absolute;
	width: 36%;
}

.radio-toolbar label {
	display: inline-block;
	margin-top: 5px;
    background-color: rgba(0,0,0, 0.0);
    padding: 10px 20px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #000000;
    border: 2px solid #444;
	border-radius: 4px;
	width: 36%;
}

.radio-toolbar input[type="radio"]:checked + label {
	width: 36%;
    background-color:#89CFF0;
	border: 1px solid rgb(128, 130, 129);
	color: #000000;
}

.radio-toolbar input[type="radio"]:focus + label {
	border: 2px solid #444;
	width: 36%;
	color: #000000;
}

.radio-toolbar label:hover {
	background-color: #dfd;
	width: 36%;
	color: #000000;
}

button {
	display: block;
	margin-top: 40px;
	margin-bottom: 8px;
	padding: 10px;
    background-color:#89CFF0;
	border: 1px solid rgb(128, 130, 129);
	color: #000000;
	font-size:15px;
	width: 100%;
}

button:hover {
	border: 2px solid rgb(128, 130, 129);
}


h1 {
	display: block;
	margin-top: 5px;
	margin-right: 5px;
	padding: 10px;
	background-color: #A5C4D8;
	color: #000000;
	width: 93%;
	text-align: center;
}

.range-wrap {
	position: relative;
	margin: 0 auto 3rem;
}

.range {
	width: 100%;
}

.bubble {
	background: #A5C4D8;
	color: black;
	padding: 4px 12px;
	position: absolute;
	border-radius: 4px;
	left: 50%;
	transform: translateX(-50%);
}

.bubble::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	background: #A5C4D8;
	color: black;
	top: -1px;
	left: 50%;
}